home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo ┌────────────────────────────────────────────────────────────────────────┐
- echo │ This batch file will print a one page order form for Elfring Soft Font │
- echo │ products when you are ready. To print the form, press any key now. │
- echo │ │
- echo │ This batch file assumes your printer is attached to LPT1:. If your │
- echo │ printer is attached to a different port, press Ctrl-C now to stop this │
- echo │ batch file, and then run it again, passing the printer port you do use.│
- echo │ │
- echo │ ORDER LPT2: or ORDER COM1: │
- echo │ │
- echo │ If you do *not* want to print this order form press the Ctrl-C key now │
- echo │ to stop this batch file. │
- echo └────────────────────────────────────────────────────────────────────────┘
- pause
- if "%1"=="" goto DO2
- copy order.txt %1
- goto theend
- :DO2
- copy order.txt LPT1:
- :THEEND
-
-